+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
+2002-02-18 Hans Breuer <hans@breuer.org>
+
+ * gdk/win32/gdkevents-win32.c : process WM_PAINT messages
+ for bg_pixmap == GDK_NO_BG, fixes The GIMP's canvas
+ rendering glitches on win32
+
+ * gdk/win32/gdkinput-win32.c : use g_object_new to create
+ GdkDevice instead of g_new
+
+ * gtk/gtkpaned.c : make LAST_SIGNAL the last in enum.
+ This avoids to smash totally unrelated static data and
+ resulting random crashes. (as reported on gtk-devel-list,
+ 2002-02-10 : testgtk crashes)
+
+ * gtk/gtk.def : add new file selection entry points
+
Mon Feb 18 17:34:43 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextview.c: Remove support for
if (!(window_impl->event_mask & GDK_EXPOSURE_MASK))
break;
+#if 0 /* we need to process exposes even with GDK_NO_BG
+ * Otherwise The GIMP canvas update is broken ....
+ */
if (GDK_WINDOW_OBJECT (window)->bg_pixmap == GDK_NO_BG)
break;
+#endif
if ((paintstruct.rcPaint.right == paintstruct.rcPaint.left)
|| (paintstruct.rcPaint.bottom == paintstruct.rcPaint.top))
WTInfo (WTI_CURSORS + cursorix, CSR_ACTIVE, &active);
if (!active)
continue;
- gdkdev = g_new (GdkDevicePrivate, 1);
+ gdkdev = g_object_new (GDK_TYPE_DEVICE, NULL);
WTInfo (WTI_CURSORS + cursorix, CSR_NAME, csrname);
gdkdev->info.name = g_strconcat (devname, " ", csrname, NULL);
gdkdev->info.source = GDK_SOURCE_PEN;
gtk_false
gtk_file_selection_complete
gtk_file_selection_get_filename
+ gtk_file_selection_get_selections
gtk_file_selection_get_type
gtk_file_selection_hide_fileop_buttons
gtk_file_selection_new
gtk_file_selection_set_filename
+ gtk_file_selection_set_select_multiple
gtk_file_selection_show_fileop_buttons
gtk_fixed_get_has_window
gtk_fixed_get_type
TOGGLE_HANDLE_FOCUS,
MOVE_HANDLE,
CYCLE_HANDLE_FOCUS,
- LAST_SIGNAL,
ACCEPT_POSITION,
- CANCEL_POSITION
+ CANCEL_POSITION,
+ LAST_SIGNAL
};
static void gtk_paned_class_init (GtkPanedClass *klass);